home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 February / EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso / enigma / earcd / emula / arosdv19.lha / AROS / clib / include / memory.h < prev    next >
C/C++ Source or Header  |  1996-10-19  |  429b  |  21 lines

  1. #ifndef _MEMORY_H
  2. #define _MEMORY_H
  3.  
  4. /*
  5.     (C) 1995-96 AROS - The Amiga Replacement OS
  6.     $Id: memory.h,v 1.2 1996/10/19 17:44:25 aros Exp $
  7.  
  8.     Desc: ANSI-C header file memory.h
  9.     Lang: english
  10. */
  11. #ifndef _SYS_TYPES_H
  12. #   include <sys/types.h>
  13. #endif
  14.  
  15. void * malloc (size_t size);
  16. void * calloc (size_t count, size_t size);
  17. void * realloc (void * oldmem, size_t newsize);
  18. void free (void * memory);
  19.  
  20. #endif /* _MEMORY_H */
  21.